home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 009a / snpd0493.zip / PRNSPOOL.H < prev    next >
C/C++ Source or Header  |  1993-04-05  |  279b  |  18 lines

  1. .I 3 16
  2. #ifdef __TURBOC__
  3.  #define FAR far
  4. #else
  5.  #define FAR _far
  6. #endif
  7.  
  8. #ifndef MK_FP
  9.  #define MK_FP(seg,offset) \
  10.         ((void _far *)(((unsigned long)(seg)<<16) | (unsigned)(offset)))
  11. #endif
  12.  
  13. struct PACKET {
  14.     unsigned char level;
  15.     char far *pathname;
  16. };
  17.  
  18.